interface PagerDutyDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.PagerDutyDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_PagerDutyDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.PagerDutyDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.PagerDutyDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » PagerDutyDetailsProperty |
PagerDuty service configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from '@aws-cdk/cfn-property-mixins';
declare const exchangeParameters: any;
const pagerDutyDetailsProperty: devopsagent.CfnServicePropsMixin.PagerDutyDetailsProperty = {
authorizationConfig: {
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
},
},
scopes: ['scopes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | Pager | PagerDuty OAuth authorization configuration. |
| scopes? | string[] | PagerDuty scopes. |
authorizationConfig?
Type:
IResolvable | Pager
(optional)
PagerDuty OAuth authorization configuration.
scopes?
Type:
string[]
(optional)
PagerDuty scopes.

.NET
Go
Java
Python
TypeScript