Interface CfnIdentityPool.CognitoStreamsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentityPool.CognitoStreamsProperty.Jsii$Proxy
Enclosing class:
CfnIdentityPool

@Stability(Stable) public static interface CfnIdentityPool.CognitoStreamsProperty extends software.amazon.jsii.JsiiSerializable
CognitoStreams is a property of the AWS::Cognito::IdentityPool resource that defines configuration options for Amazon Cognito streams.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cognito.*;
 CognitoStreamsProperty cognitoStreamsProperty = CognitoStreamsProperty.builder()
         .roleArn("roleArn")
         .streamingStatus("streamingStatus")
         .streamName("streamName")
         .build();
 

See Also: