Class CfnAPNSChannel

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.722Z") @Stability(Stable) public class CfnAPNSChannel extends CfnResource implements IInspectable
A CloudFormation AWS::Pinpoint::APNSChannel.

A channel is a type of platform that you can deliver messages to. You can use the APNs channel to send push notification messages to the Apple Push Notification service (APNs). Before you can use Amazon Pinpoint to send notifications to APNs, you have to enable the APNs channel for an Amazon Pinpoint application.

The APNSChannel resource represents the status and authentication settings for the APNs channel for an application.

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.pinpoint.*;
 CfnAPNSChannel cfnAPNSChannel = CfnAPNSChannel.Builder.create(this, "MyCfnAPNSChannel")
         .applicationId("applicationId")
         // the properties below are optional
         .bundleId("bundleId")
         .certificate("certificate")
         .defaultAuthenticationMethod("defaultAuthenticationMethod")
         .enabled(false)
         .privateKey("privateKey")
         .teamId("teamId")
         .tokenKey("tokenKey")
         .tokenKeyId("tokenKeyId")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAPNSChannel

      protected CfnAPNSChannel(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAPNSChannel

      protected CfnAPNSChannel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAPNSChannel

      @Stability(Stable) public CfnAPNSChannel(@NotNull Construct scope, @NotNull String id, @NotNull CfnAPNSChannelProps props)
      Create a new AWS::Pinpoint::APNSChannel.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getApplicationId

      @Stability(Stable) @NotNull public String getApplicationId()
      The unique identifier for the Amazon Pinpoint application that the APNs channel applies to.
    • setApplicationId

      @Stability(Stable) public void setApplicationId(@NotNull String value)
      The unique identifier for the Amazon Pinpoint application that the APNs channel applies to.
    • getBundleId

      @Stability(Stable) @Nullable public String getBundleId()
      The bundle identifier that's assigned to your iOS app.

      This identifier is used for APNs tokens.

    • setBundleId

      @Stability(Stable) public void setBundleId(@Nullable String value)
      The bundle identifier that's assigned to your iOS app.

      This identifier is used for APNs tokens.

    • getCertificate

      @Stability(Stable) @Nullable public String getCertificate()
      The APNs client certificate that you received from Apple.

      Specify this value if you want Amazon Pinpoint to communicate with APNs by using an APNs certificate.

    • setCertificate

      @Stability(Stable) public void setCertificate(@Nullable String value)
      The APNs client certificate that you received from Apple.

      Specify this value if you want Amazon Pinpoint to communicate with APNs by using an APNs certificate.

    • getDefaultAuthenticationMethod

      @Stability(Stable) @Nullable public String getDefaultAuthenticationMethod()
      The default authentication method that you want Amazon Pinpoint to use when authenticating with APNs.

      Valid options are key or certificate .

    • setDefaultAuthenticationMethod

      @Stability(Stable) public void setDefaultAuthenticationMethod(@Nullable String value)
      The default authentication method that you want Amazon Pinpoint to use when authenticating with APNs.

      Valid options are key or certificate .

    • getEnabled

      @Stability(Stable) @Nullable public Object getEnabled()
      Specifies whether to enable the APNs channel for the application.
    • setEnabled

      @Stability(Stable) public void setEnabled(@Nullable Boolean value)
      Specifies whether to enable the APNs channel for the application.
    • setEnabled

      @Stability(Stable) public void setEnabled(@Nullable IResolvable value)
      Specifies whether to enable the APNs channel for the application.
    • getPrivateKey

      @Stability(Stable) @Nullable public String getPrivateKey()
      The private key for the APNs client certificate that you want Amazon Pinpoint to use to communicate with APNs.
    • setPrivateKey

      @Stability(Stable) public void setPrivateKey(@Nullable String value)
      The private key for the APNs client certificate that you want Amazon Pinpoint to use to communicate with APNs.
    • getTeamId

      @Stability(Stable) @Nullable public String getTeamId()
      The identifier that's assigned to your Apple Developer Account team.

      This identifier is used for APNs tokens.

    • setTeamId

      @Stability(Stable) public void setTeamId(@Nullable String value)
      The identifier that's assigned to your Apple Developer Account team.

      This identifier is used for APNs tokens.

    • getTokenKey

      @Stability(Stable) @Nullable public String getTokenKey()
      The authentication key to use for APNs tokens.
    • setTokenKey

      @Stability(Stable) public void setTokenKey(@Nullable String value)
      The authentication key to use for APNs tokens.
    • getTokenKeyId

      @Stability(Stable) @Nullable public String getTokenKeyId()
      The key identifier that's assigned to your APNs signing key.

      Specify this value if you want Amazon Pinpoint to communicate with APNs by using APNs tokens.

    • setTokenKeyId

      @Stability(Stable) public void setTokenKeyId(@Nullable String value)
      The key identifier that's assigned to your APNs signing key.

      Specify this value if you want Amazon Pinpoint to communicate with APNs by using APNs tokens.