當前位置: 首頁>>代碼示例>>Golang>>正文


Golang EC2.CreateSubnet方法代碼示例

本文整理匯總了Golang中github.com/aws/aws-sdk-go/service/ec2.EC2.CreateSubnet方法的典型用法代碼示例。如果您正苦於以下問題:Golang EC2.CreateSubnet方法的具體用法?Golang EC2.CreateSubnet怎麽用?Golang EC2.CreateSubnet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/aws/aws-sdk-go/service/ec2.EC2的用法示例。


在下文中一共展示了EC2.CreateSubnet方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: createSubnets

func createSubnets(svc *ec2.EC2, config *Config) (*ec2.CreateSubnetOutput, *ec2.CreateSubnetOutput, error) {

	var csi *ec2.CreateSubnetInput
	if config.AvailZone1 != "" {
		csi = &ec2.CreateSubnetInput{CidrBlock: &config.PublicNet, VpcId: &config.VpcId, AvailabilityZone: &config.AvailZone1}
	} else {
		csi = &ec2.CreateSubnetInput{CidrBlock: &config.PublicNet, VpcId: &config.VpcId}
	}
	//csi := &ec2.CreateSubnetInput{ CidrBlock: &config.PublicNet, VpcId: &config.VpcId }
	cso1, err := svc.CreateSubnet(csi)
	if err != nil {
		fmt.Println("Create public subnet failed")
		return nil, nil, err
	}
	//fmt.Println(cso1)
	config.PublicSubnetId = *cso1.Subnet.SubnetId

	if config.AvailZone2 != "" {
		csi = &ec2.CreateSubnetInput{CidrBlock: &config.PrivateNet, VpcId: &config.VpcId, AvailabilityZone: &config.AvailZone2}
	} else {
		csi = &ec2.CreateSubnetInput{CidrBlock: &config.PrivateNet, VpcId: &config.VpcId}
	}
	//csi := &ec2.CreateSubnetInput{ CidrBlock: &config.PublicNet, VpcId: &config.VpcId }
	//csi = &ec2.CreateSubnetInput{ CidrBlock: &config.PrivateNet, VpcId: &config.VpcId}
	cso2, err := svc.CreateSubnet(csi)
	if err != nil {
		fmt.Println("Create private subnet failed")
		return nil, nil, err
	}
	//fmt.Println(cso2)
	config.PrivateSubnetId = *cso2.Subnet.SubnetId

	return cso1, cso2, nil

}
開發者ID:jamesunger,項目名稱:saws,代碼行數:35,代碼來源:saws.go

示例2: addSubnet

func addSubnet(ec2Client *ec2.EC2, subnet *providers.Subnet, providerConfig *providers.JSONObject) (success bool, warnings []string, err []error) {
	createSubnetOutput, callErr := ec2Client.CreateSubnet(&ec2.CreateSubnetInput{
		CIDRBlock: &subnet.CidrBlock,
		VPCID:     &providerConfig.Provider.ProviderConfig.Aws.Vpc.VpcID,
	})

	if callErr != nil {
		err = append(err, callErr)
		success = false
	} else {
		//subnet created
		subnet.SubnetID = *createSubnetOutput.Subnet.SubnetID
		log.WithFields(log.Fields{
			"Created": subnet.SubnetID,
		}).Info("Subnet Created")
		//tag subnet
		tagCreated, callErr := addDockerTagToResource(ec2Client, subnet.SubnetID, providerConfig.Provider.ProviderConfig.Aws.Vpc.Name, subnet.SubnetName)
		if callErr != nil {
			warnings = append(warnings, "Error tagging subnet")
		} else {
			log.WithFields(log.Fields{
				"Created": tagCreated,
			}).Info("Tag Created")
		}
		success = true
	}

	return success, warnings, err
}
開發者ID:podtools,項目名稱:pod,代碼行數:29,代碼來源:Awsprovider.go


注:本文中的github.com/aws/aws-sdk-go/service/ec2.EC2.CreateSubnet方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。