package Paws::IoTAnalytics::CreateChannelResponse; use Moose; has ChannelArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'channelArn'); has ChannelName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'channelName'); has RetentionPeriod => (is => 'ro', isa => 'Paws::IoTAnalytics::RetentionPeriod', traits => ['NameInRequest'], request_name => 'retentionPeriod'); has _request_id => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::IoTAnalytics::CreateChannelResponse =head1 ATTRIBUTES =head2 ChannelArn => Str The ARN of the channel. =head2 ChannelName => Str The name of the channel. =head2 RetentionPeriod => L How long, in days, message data is kept for the channel. =head2 _request_id => Str =cut