Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.GetSubscriptionAttributesAsync C# (CSharp) 메소드

GetSubscriptionAttributesAsync() 공개 메소드

Returns all of the properties of a subscription.
/// Indicates that the user has been denied access to the requested resource. /// /// Indicates an internal service error. /// /// Indicates that a request parameter does not comply with the associated constraints. /// /// Indicates that the requested resource does not exist. ///
public GetSubscriptionAttributesAsync ( string subscriptionArn, GetSubscriptionAttributesResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
subscriptionArn string The ARN of the subscription whose properties you want to get.
callback GetSubscriptionAttributesResponse>.AmazonServiceCallback An Action delegate that is invoked when the operation completes.
options Amazon.Runtime.AsyncOptions /// A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property. ///
리턴 void
        public void GetSubscriptionAttributesAsync(string subscriptionArn,  AmazonServiceCallback<GetSubscriptionAttributesRequest, GetSubscriptionAttributesResponse> callback, AsyncOptions options = null)
        {
            var request = new GetSubscriptionAttributesRequest();
            request.SubscriptionArn = subscriptionArn;
            GetSubscriptionAttributesAsync(request, callback, options);
        }

Same methods

AmazonSimpleNotificationServiceClient::GetSubscriptionAttributesAsync ( GetSubscriptionAttributesRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonSimpleNotificationServiceClient::GetSubscriptionAttributesAsync ( string subscriptionArn, System cancellationToken = default(CancellationToken) ) : Task
AmazonSimpleNotificationServiceClient::GetSubscriptionAttributesAsync ( GetSubscriptionAttributesRequest request, GetSubscriptionAttributesResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonSimpleNotificationServiceClient