interface CfnAPNSVoipSandboxChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnAPNSVoipSandboxChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnAPNSVoipSandboxChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnAPNSVoipSandboxChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnAPNSVoipSandboxChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnAPNSVoipSandboxChannelMixinProps |
Properties for CfnAPNSVoipSandboxChannelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const cfnAPNSVoipSandboxChannelMixinProps: pinpoint_mixins.CfnAPNSVoipSandboxChannelMixinProps = {
applicationId: 'applicationId',
bundleId: 'bundleId',
certificate: 'certificate',
defaultAuthenticationMethod: 'defaultAuthenticationMethod',
enabled: false,
privateKey: 'privateKey',
teamId: 'teamId',
tokenKey: 'tokenKey',
tokenKeyId: 'tokenKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier for the application that the APNs VoIP sandbox channel applies to. |
| bundle | string | The bundle identifier that's assigned to your iOS app. |
| certificate? | string | The APNs client certificate that you received from Apple. |
| default | string | The default authentication method that you want Amazon Pinpoint to use when authenticating with APNs. |
| enabled? | boolean | IResolvable | Specifies whether the APNs VoIP sandbox channel is enabled for the application. |
| private | string | The private key for the APNs client certificate that you want Amazon Pinpoint to use to communicate with the APNs sandbox environment. |
| team | string | The identifier that's assigned to your Apple developer account team. |
| token | string | The authentication key to use for APNs tokens. |
| token | string | The key identifier that's assigned to your APNs signing key. |
applicationId?
Type:
string
(optional)
The unique identifier for the application that the APNs VoIP sandbox channel applies to.
bundleId?
Type:
string
(optional)
The bundle identifier that's assigned to your iOS app.
This identifier is used for APNs tokens.
certificate?
Type:
string
(optional)
The APNs client certificate that you received from Apple.
Specify this value if you want Amazon Pinpoint to communicate with the APNs sandbox environment by using an APNs certificate.
defaultAuthenticationMethod?
Type:
string
(optional)
The default authentication method that you want Amazon Pinpoint to use when authenticating with APNs.
Valid options are key or certificate .
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether the APNs VoIP sandbox channel is enabled for the application.
privateKey?
Type:
string
(optional)
The private key for the APNs client certificate that you want Amazon Pinpoint to use to communicate with the APNs sandbox environment.
teamId?
Type:
string
(optional)
The identifier that's assigned to your Apple developer account team.
This identifier is used for APNs tokens.
tokenKey?
Type:
string
(optional)
The authentication key to use for APNs tokens.
tokenKeyId?
Type:
string
(optional)
The key identifier that's assigned to your APNs signing key.
Specify this value if you want Amazon Pinpoint to communicate with the APNs sandbox environment by using APNs tokens.

.NET
Go
Java
Python
TypeScript