Interface CfnIdentityPool.PushSyncProperty

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

@Stability(Stable) public static interface CfnIdentityPool.PushSyncProperty extends software.amazon.jsii.JsiiSerializable
PushSync is a property of the AWS::Cognito::IdentityPool resource that defines the configuration options to be applied to an Amazon Cognito identity pool.

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.*;
 PushSyncProperty pushSyncProperty = PushSyncProperty.builder()
         .applicationArns(List.of("applicationArns"))
         .roleArn("roleArn")
         .build();
 

See Also: