Table of Contents

Class CfnIdentityPool.PushSyncProperty

Namespace
Amazon.CDK.AWS.Cognito
Assembly
Amazon.CDK.AWS.Cognito.dll

PushSync is a property of the AWS::Cognito::IdentityPool resource that defines the configuration options to be applied to an Amazon Cognito identity pool.

public class CfnIdentityPool.PushSyncProperty : CfnIdentityPool.IPushSyncProperty
Inheritance
CfnIdentityPool.PushSyncProperty
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Cognito;

             var pushSyncProperty = new PushSyncProperty {
                 ApplicationArns = new [] { "applicationArns" },
                 RoleArn = "roleArn"
             };

Remarks

Constructors

PushSyncProperty()

public PushSyncProperty()

Properties

ApplicationArns

The ARNs of the Amazon SNS platform applications that could be used by clients.

public string[]? ApplicationArns { get; set; }

Property Value

string[]

Remarks

RoleArn

An IAM role configured to allow Amazon Cognito to call Amazon SNS on behalf of the developer.

public string? RoleArn { get; set; }

Property Value

string

Remarks