Table of Contents

Interface CfnIdentityPool.IPushSyncProperty

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 interface CfnIdentityPool.IPushSyncProperty

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

Properties

ApplicationArns

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

string[]? ApplicationArns { get; }

Property Value

string[]

Remarks

RoleArn

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

string? RoleArn { get; }

Property Value

string

Remarks