![]() |
![]()
| ![]() |
![]()
NAMEPaws::MarketplaceCommerceAnalytics::StartSupportDataExport - Arguments for method StartSupportDataExport on Paws::MarketplaceCommerceAnalytics DESCRIPTIONThis class represents the parameters used for calling the method StartSupportDataExport on the AWS Marketplace Commerce Analytics service. Use the attributes of this class as arguments to method StartSupportDataExport. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to StartSupportDataExport. SYNOPSISmy $marketplacecommerceanalytics = Paws->service('MarketplaceCommerceAnalytics'); my $StartSupportDataExportResult = $marketplacecommerceanalytics->StartSupportDataExport( DataSetType => 'customer_support_contacts_data', DestinationS3BucketName => 'MyDestinationS3BucketName', FromDate => '1970-01-01T01:00:00', RoleNameArn => 'MyRoleNameArn', SnsTopicArn => 'MySnsTopicArn', CustomerDefinedValues => { 'MyOptionalKey' => 'MyOptionalValue', # key: min: 1, max: 255, value: min: 1, max: 255 }, # OPTIONAL DestinationS3Prefix => 'MyDestinationS3Prefix', # OPTIONAL ); # Results: my $DataSetRequestId = $StartSupportDataExportResult->DataSetRequestId; # Returns a Paws::MarketplaceCommerceAnalytics::StartSupportDataExportResult object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/marketplacecommerceanalytics/StartSupportDataExport> ATTRIBUTESCustomerDefinedValues => Paws::MarketplaceCommerceAnalytics::CustomerDefinedValues(Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file. REQUIRED DataSetType => StrSpecifies the data set type to be written to the output csv file. The data set types customer_support_contacts_data and test_customer_support_contacts_data both result in a csv file containing the following fields: Product Id, Product Code, Customer Guid, Subscription Guid, Subscription Start Date, Organization, AWS Account Id, Given Name, Surname, Telephone Number, Email, Title, Country Code, ZIP Code, Operation Type, and Operation Time.
Valid values are: "customer_support_contacts_data", "test_customer_support_contacts_data" REQUIRED DestinationS3BucketName => StrThe name (friendly name, not ARN) of the destination S3 bucket. DestinationS3Prefix => Str(Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root. REQUIRED FromDate => StrThe start date from which to retrieve the data set in UTC. This parameter only affects the customer_support_contacts_data data set type. REQUIRED RoleNameArn => StrThe Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services. REQUIRED SnsTopicArn => StrAmazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred. SEE ALSOThis class forms part of Paws, documenting arguments for method StartSupportDataExport in Paws::MarketplaceCommerceAnalytics BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|