/// <summary> /// Initiates the asynchronous execution of the ModifyDBSnapshotAttribute operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ModifyDBSnapshotAttribute operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<ModifyDBSnapshotAttributeResponse> ModifyDBSnapshotAttributeAsync(ModifyDBSnapshotAttributeRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ModifyDBSnapshotAttributeRequestMarshaller(); var unmarshaller = ModifyDBSnapshotAttributeResponseUnmarshaller.Instance; return InvokeAsync<ModifyDBSnapshotAttributeRequest,ModifyDBSnapshotAttributeResponse>(request, marshaller, unmarshaller, cancellationToken); }
public void ModifyDBSnapshotAttributeMarshallTest() { var operation = service_model.FindOperation("ModifyDBSnapshotAttribute"); var request = InstantiateClassGenerator.Execute<ModifyDBSnapshotAttributeRequest>(); var marshaller = new ModifyDBSnapshotAttributeRequestMarshaller(); var internalRequest = marshaller.Marshall(request); var validator = new AWSQueryValidator(internalRequest.Parameters, request, service_model, operation); validator.Validate(); var payloadResponse = new XmlSampleGenerator(service_model, operation).Execute(); var context = new XmlUnmarshallerContext(Utils.CreateStreamFromString(payloadResponse), false, null); var response = ModifyDBSnapshotAttributeResponseUnmarshaller.Instance.Unmarshall(context) as ModifyDBSnapshotAttributeResponse; InstantiateClassGenerator.ValidateObjectFullyInstantiated(response); }
/// <summary> /// Adds an attribute and values to, or removes an attibute and values from a manual DB /// snapshot. /// /// /// <para> /// To share a manual DB snapshot with other AWS accounts, specify <code>restore</code> /// as the <code>AttributeName</code> and use the <code>ValuesToAdd</code> parameter to /// add a list of the AWS account ids that are authorized to retore the manual DB snapshot. /// Uses the value <code>all</code> to make the manual DB snapshot public and can by copied /// or restored by all AWS accounts. Do not add the <code>all</code> value for any manual /// DB snapshots that contain private information that you do not want to be available /// to all AWS accounts. /// </para> /// /// <para> /// To view which AWS accounts have access to copy or restore a manual DB snapshot, or /// whether a manual DB snapshot public or private, use the <a>DescribeDBSnapshotAttributes</a> /// API. /// </para> /// /// <para> /// If the manual DB snapshot is encrypted, it cannot be shared. /// </para> /// </summary> /// <param name="request">Container for the necessary parameters to execute the ModifyDBSnapshotAttribute service method.</param> /// /// <returns>The response from the ModifyDBSnapshotAttribute service method, as returned by RDS.</returns> /// <exception cref="Amazon.RDS.Model.DBSnapshotNotFoundException"> /// <i>DBSnapshotIdentifier</i> does not refer to an existing DB snapshot. /// </exception> /// <exception cref="Amazon.RDS.Model.InvalidDBSnapshotStateException"> /// The state of the DB snapshot does not allow deletion. /// </exception> /// <exception cref="Amazon.RDS.Model.SharedSnapshotQuotaExceededException"> /// You have exceeded the maximum number of account ids that you can share a manual DB /// snapshot with. /// </exception> public ModifyDBSnapshotAttributeResponse ModifyDBSnapshotAttribute(ModifyDBSnapshotAttributeRequest request) { var marshaller = new ModifyDBSnapshotAttributeRequestMarshaller(); var unmarshaller = ModifyDBSnapshotAttributeResponseUnmarshaller.Instance; return Invoke<ModifyDBSnapshotAttributeRequest,ModifyDBSnapshotAttributeResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the ModifyDBSnapshotAttribute operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ModifyDBSnapshotAttribute operation on AmazonRDSClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndModifyDBSnapshotAttribute /// operation.</returns> public IAsyncResult BeginModifyDBSnapshotAttribute(ModifyDBSnapshotAttributeRequest request, AsyncCallback callback, object state) { var marshaller = new ModifyDBSnapshotAttributeRequestMarshaller(); var unmarshaller = ModifyDBSnapshotAttributeResponseUnmarshaller.Instance; return BeginInvoke<ModifyDBSnapshotAttributeRequest>(request, marshaller, unmarshaller, callback, state); }