PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::IoTAnalytics::CreateDataset; use Moose; has Actions => (is => 'ro', isa => 'ArrayRef[Paws::IoTAnalytics::DatasetAction]', traits => ['NameInRequest'], request_name => 'actions', required => 1); has ContentDeliveryRules => (is => 'ro', isa => 'ArrayRef[Paws::IoTAnalytics::DatasetContentDeliveryRule]', traits => ['NameInRequest'], request_name => 'contentDeliveryRules'); has DatasetName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'datasetName', required => 1); has LateDataRules => (is => 'ro', isa => 'ArrayRef[Paws::IoTAnalytics::LateDataRule]', traits => ['NameInRequest'], request_name => 'lateDataRules'); has RetentionPeriod => (is => 'ro', isa => 'Paws::IoTAnalytics::RetentionPeriod', traits => ['NameInRequest'], request_name => 'retentionPeriod'); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::IoTAnalytics::Tag]', traits => ['NameInRequest'], request_name => 'tags'); has Triggers => (is => 'ro', isa => 'ArrayRef[Paws::IoTAnalytics::DatasetTrigger]', traits => ['NameInRequest'], request_name => 'triggers'); has VersioningConfiguration => (is => 'ro', isa => 'Paws::IoTAnalytics::VersioningConfiguration', traits => ['NameInRequest'], request_name => 'versioningConfiguration'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateDataset'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/datasets'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::IoTAnalytics::CreateDatasetResponse'); 1; ### main pod documentation begin ### =head1 NAME Paws::IoTAnalytics::CreateDataset - Arguments for method CreateDataset on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateDataset on the L service. Use the attributes of this class as arguments to method CreateDataset. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateDataset. =head1 SYNOPSIS my $iotanalytics = Paws->service('IoTAnalytics'); my $CreateDatasetResponse = $iotanalytics->CreateDataset( Actions => [ { ActionName => 'MyDatasetActionName', # min: 1, max: 128; OPTIONAL ContainerAction => { ExecutionRoleArn => 'MyRoleArn', # min: 20, max: 2048 Image => 'MyImage', # max: 255 ResourceConfiguration => { ComputeType => 'ACU_1', # values: ACU_1, ACU_2 VolumeSizeInGB => 1, # min: 1, max: 50 }, Variables => [ { Name => 'MyVariableName', # min: 1, max: 256 DatasetContentVersionValue => { DatasetName => 'MyDatasetName', # min: 1, max: 128 }, # OPTIONAL DoubleValue => 1, # OPTIONAL OutputFileUriValue => { FileName => 'MyOutputFileName', }, # OPTIONAL StringValue => 'MyStringValue', # max: 1024; OPTIONAL }, ... ], # max: 50; OPTIONAL }, # OPTIONAL QueryAction => { SqlQuery => 'MySqlQuery', Filters => [ { DeltaTime => { OffsetSeconds => 1, TimeExpression => 'MyTimeExpression', }, # OPTIONAL }, ... ], # max: 1; OPTIONAL }, # OPTIONAL }, ... ], DatasetName => 'MyDatasetName', ContentDeliveryRules => [ { Destination => { IotEventsDestinationConfiguration => { InputName => 'MyIotEventsInputName', # min: 1, max: 128 RoleArn => 'MyRoleArn', # min: 20, max: 2048 }, # OPTIONAL S3DestinationConfiguration => { Bucket => 'MyBucketName', # min: 3, max: 255 Key => 'MyBucketKeyExpression', # min: 1, max: 255 RoleArn => 'MyRoleArn', # min: 20, max: 2048 GlueConfiguration => { DatabaseName => 'MyGlueDatabaseName', # min: 1, max: 150 TableName => 'MyGlueTableName', # min: 1, max: 150 }, # OPTIONAL }, # OPTIONAL }, EntryName => 'MyEntryName', # OPTIONAL }, ... ], # OPTIONAL LateDataRules => [ { RuleConfiguration => { DeltaTimeSessionWindowConfiguration => { TimeoutInMinutes => 1, # min: 1, max: 60 }, # OPTIONAL }, RuleName => 'MyLateDataRuleName', # min: 1, max: 128; OPTIONAL }, ... ], # OPTIONAL RetentionPeriod => { NumberOfDays => 1, # min: 1; OPTIONAL Unlimited => 1, # OPTIONAL }, # OPTIONAL Tags => [ { Key => 'MyTagKey', # min: 1, max: 256 Value => 'MyTagValue', # min: 1, max: 256 }, ... ], # OPTIONAL Triggers => [ { Dataset => { Name => 'MyDatasetName', # min: 1, max: 128 }, # OPTIONAL Schedule => { Expression => 'MyScheduleExpression', # OPTIONAL }, # OPTIONAL }, ... ], # OPTIONAL VersioningConfiguration => { MaxVersions => 1, # min: 1, max: 1000; OPTIONAL Unlimited => 1, # OPTIONAL }, # OPTIONAL ); # Results: my $DatasetArn = $CreateDatasetResponse->DatasetArn; my $DatasetName = $CreateDatasetResponse->DatasetName; my $RetentionPeriod = $CreateDatasetResponse->RetentionPeriod; # Returns a L 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 L =head1 ATTRIBUTES =head2 B Actions => ArrayRef[L] A list of actions that create the data set contents. =head2 ContentDeliveryRules => ArrayRef[L] When dataset contents are created, they are delivered to destinations specified here. =head2 B DatasetName => Str The name of the data set. =head2 LateDataRules => ArrayRef[L] A list of data rules that send notifications to Amazon CloudWatch, when data arrives late. To specify C, the dataset must use a DeltaTimer (https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_DeltaTime.html) filter. =head2 RetentionPeriod => L Optional. How long, in days, versions of dataset contents are kept for the dataset. If not specified or set to C, versions of dataset contents are retained for at most 90 days. The number of versions of dataset contents retained is determined by the C parameter. For more information, see Keeping Multiple Versions of AWS IoT Analytics Data Sets (https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions) in the I. =head2 Tags => ArrayRef[L] Metadata which can be used to manage the data set. =head2 Triggers => ArrayRef[L] A list of triggers. A trigger causes data set contents to be populated at a specified time interval or when another data set's contents are created. The list of triggers can be empty or contain up to five C objects. =head2 VersioningConfiguration => L Optional. How many versions of dataset contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the C parameter. For more information, see Keeping Multiple Versions of AWS IoT Analytics Data Sets (https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions) in the I. =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateDataset in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut