This content is part of a third party extension that is not supported by the Cake project.
                        For more information about this extension see 
Cake.AWS.Route53.
                            
 
	
		Summary
	
            Create or change a DNS record for a hosted zone.
            
		
	Syntax
	public static Task<string> CreateResourceRecordSet(this ICakeContext context, string hostedZoneId, string name, RRType type, string value, long ttl, Route53Settings settings)
	Attributes
	
		
			
				
					
						| Type | 
						Description | 
					
				
					
						| AsyncStateMachineAttribute | 
						 | 
					
					
						| CakeMethodAliasAttribute | 
						 | 
					
					
						| CakeAliasCategoryAttribute | 
						 | 
					
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | 
						Type | 
						Description | 
					
				
					
						| context | 
						ICakeContext | 
						The cake context. | 
					
					
						| hostedZoneId | 
						string | 
						The ID of the hosted zone that contains the resource record sets that you want to change | 
					
					
						| name | 
						string | 
						The name of the DNS record set. | 
					
					
						| type | 
						RRType | 
						The type of the DNS record set. | 
					
					
						| value | 
						string | 
						The value of the record set. | 
					
					
						| ttl | 
						long | 
						The time to live of the record set. | 
					
					
						| settings | 
						Route53Settings | 
						The Route53Settings required to upload to Amazon S3. | 
					
			
		 
	 	
	Return Value
	
		
			
				
					
						| Type | 
						Description | 
					
				
				
					| Task<string> | 
					 |