typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
51 lines (50 loc) • 2.01 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Agent_Type = 'AWS::DataSync::Agent';
export declare const Agent_Type = "AWS::DataSync::Agent";
/**
* Resource schema for AWS::DataSync::Agent. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html}
*/
export default function Agent(props: Agent_Properties): CfnResource<Agent_Properties>;
/**
* Resource schema for AWS::DataSync::Agent. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html}
*/
export declare type Agent_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html#cfn-datasync-agent-agentname}
*/
AgentName?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html#cfn-datasync-agent-activationkey}
*/
ActivationKey: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html#cfn-datasync-agent-securitygrouparns}
*/
SecurityGroupArns?: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html#cfn-datasync-agent-subnetarns}
*/
SubnetArns?: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html#cfn-datasync-agent-vpcendpointid}
*/
VpcEndpointId?: Resolvable<string>;
EndpointType?: Resolvable<'FIPS' | 'PUBLIC' | 'PRIVATE_LINK'>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-agent.html#cfn-datasync-agent-tags}
*/
Tags?: Tag[];
AgentArn?: Resolvable<string>;
};
export declare type Tag = {
Key: Resolvable<string>;
Value: Resolvable<string>;
};