interface PushSyncProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cognito.Mixins.CfnIdentityPoolPropsMixin.PushSyncProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscognito/mixins#CfnIdentityPoolPropsMixin_PushSyncProperty |
Java | software.amazon.awscdk.mixins.preview.services.cognito.mixins.CfnIdentityPoolPropsMixin.PushSyncProperty |
Python | aws_cdk.mixins_preview.aws_cognito.mixins.CfnIdentityPoolPropsMixin.PushSyncProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cognito » mixins » CfnIdentityPoolPropsMixin » PushSyncProperty |
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 { mixins as cognito_mixins } from '@aws-cdk/mixins-preview/aws-cognito';
const pushSyncProperty: cognito_mixins.CfnIdentityPoolPropsMixin.PushSyncProperty = {
applicationArns: ['applicationArns'],
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string[] | The ARNs of the Amazon SNS platform applications that could be used by clients. |
| role | string | An IAM role configured to allow Amazon Cognito to call Amazon SNS on behalf of the developer. |
applicationArns?
Type:
string[]
(optional)
The ARNs of the Amazon SNS platform applications that could be used by clients.
roleArn?
Type:
string
(optional)
An IAM role configured to allow Amazon Cognito to call Amazon SNS on behalf of the developer.

.NET
Go
Java
Python
TypeScript