|
NAMEPaws::IoT::UpdateStream - Arguments for method UpdateStream on Paws::IoT DESCRIPTIONThis class represents the parameters used for calling the method UpdateStream on the AWS IoT service. Use the attributes of this class as arguments to method UpdateStream. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateStream. SYNOPSIS my $iot = Paws->service('IoT');
my $UpdateStreamResponse = $iot->UpdateStream(
StreamId => 'MyStreamId',
Description => 'MyStreamDescription', # OPTIONAL
Files => [
{
FileId => 1, # max: 255; OPTIONAL
S3Location => {
Bucket => 'MyS3Bucket', # min: 1; OPTIONAL
Key => 'MyS3Key', # min: 1; OPTIONAL
Version => 'MyS3Version', # OPTIONAL
}, # OPTIONAL
},
...
], # OPTIONAL
RoleArn => 'MyRoleArn', # OPTIONAL
);
# Results:
my $Description = $UpdateStreamResponse->Description;
my $StreamArn = $UpdateStreamResponse->StreamArn;
my $StreamId = $UpdateStreamResponse->StreamId;
my $StreamVersion = $UpdateStreamResponse->StreamVersion;
# Returns a L<Paws::IoT::UpdateStreamResponse> 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/iot/UpdateStream> ATTRIBUTESDescription => StrThe description of the stream. Files => ArrayRef[Paws::IoT::StreamFile]The files associated with the stream. RoleArn => StrAn IAM role that allows the IoT service principal assumes to access your S3 files. REQUIRED StreamId => StrThe stream ID. SEE ALSOThis class forms part of Paws, documenting arguments for method UpdateStream in Paws::IoT 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>
|